home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / sweep10.zip / HEAP.HPP < prev    next >
Text File  |  1993-04-01  |  174b  |  11 lines

  1. ////////////////
  2. // heap class //
  3. ////////////////
  4.  
  5. class Heap {
  6.     void far * oldheap;
  7.   public:
  8.     Heap (unsigned long s = 0, unsigned b = 0);
  9.     ~Heap();
  10. };
  11.